home *** CD-ROM | disk | FTP | other *** search
/ HamCall (October 1991) / HamCall (Whitehall Publishing)(1991).bin / amateur / w0rli / mb1202.exe / lha / FT.DOC < prev    next >
Text File  |  1991-04-06  |  2KB  |  68 lines

  1.  
  2. FT - the File Transfer Server.
  3.  
  4. FT provides transparent data transfer.    Any type of file may be copied.
  5. FT Runs in approx 40k DESQview window.
  6. FT works as both server and client.
  7. FT provides multiple client and multiple server sessions concurrently.
  8.  
  9. FT provides typical unix style file manipulation commands:
  10.  
  11. cp    - copy file.
  12. ls    - list directory.
  13. mkdir - create directory.
  14. rm    - remove file.
  15. rmdir - remove directory.
  16.  
  17. There are a few commands unique to FT:
  18.  
  19. q  - exit FT.
  20. s  - show status.  Only partially implemented.
  21. xd - start/stop diagnostic trace.
  22. xs - start/stop data transfer trace.
  23.  
  24.  
  25. Command line to invoke FT:
  26.  
  27. FT "r"|"w" appl timeout port1 port2 ...
  28.  
  29. "r|w" means one of "r" (read only) or "w" (write and delete allowed).
  30. "appl" is the G8BPQ application number.
  31. "timeout" is the inactivity timeout.
  32. These are followed by a list of network ports available to FT.
  33.  
  34. In the BPQ switch, there must be an application "*FT" defined.
  35.  
  36. For example, with *FT as the fifth bpq application, using COM13 and COM14:
  37. FT w 5 60 13 14
  38.  
  39. FT has 6 total "ports" which may be used by the network or
  40. as "virtual consoles".  Any "left over" after the network
  41. port definitions are available for use as "virtual consoles".
  42. Once a command has been initiated (for example "cp ft.exe wlinn;ft.exe")
  43. other commands may be initiated until all "virtual consoles" are busy.
  44.  
  45. File names are specified with a leading node ID and semi-colon.
  46. If the node ID and semi-colon are missing, the local node is assumed.
  47.  
  48. Some examples of FT commands:
  49.  
  50. cp ft.exe wlinn;ft.exe
  51. This will copy file ft.exe from the current working directory to the
  52. current working directory at node wlinn.
  53.  
  54. cp wlinn;e:\logs\oct.sum \hank\junk
  55. This will copy the file oct.sum from the e: drive, directory \logs
  56. at node wlinn to the file junk on the default drive, directory \hank
  57. on the local node.
  58.  
  59. ls wlinn;\mb\*.exe
  60. This will list all executables in the \mb directory at node wlinn.
  61.  
  62. Note that "3 node" commands are not yet supported.  From wlinn, you
  63. cannot do something like "cp lso;stuff bend;junk".  If there is any
  64. interest, such a command could be implemented.
  65.  
  66. Note also that cp does not yet support wildcards.
  67.  
  68.